home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 7 / FM Towns Free Software Collection 7.iso / taropyon / hewin / ccisrc / affcopy.h next >
C/C++ Source or Header  |  1993-11-30  |  567b  |  16 lines

  1. #ifndef    _AFFCOPY_H
  2. #define    _AFFCOPY_H
  3.  
  4. #define    AFFCOPY_OVERWRITE_CHECK    (0x01)    /* 上書き確認する            */
  5. #define    AFFCOPY_TIME_CHECK        (0x02)    /* 日付比較                    */
  6. #define    AFFCOPY_SINGLE_COPY        (0x04)    /* ファイルひとつだけ複写    */
  7. #define    AFFCOPY_LAST_MSG_IGN    (0x80)    /* 最後のメッセージ表示禁止    */
  8.  
  9. #ifndef    __CCI__
  10. extern    int        AFF_setTimeStamp( char *fn, USHORT dt, USHORT tm );
  11. extern    int        AFF_fileCopy( int attr, int srcDrv, char *srcWhare, AFBUF_T **afBufTbl, char *dstPath, char *dstFn );
  12. extern    int        AFF_fileCopy2( char *srcPn, char *dstPn );
  13. #endif
  14.  
  15. #endif
  16.